home *** CD-ROM | disk | FTP | other *** search
- Command name : If...Else...EndIf
-
- Function : Conditional operators
-
- Arguments : If [NOT] [WARN]
-
- Location : Kickstart ROM
-
- Now I must say now that those two arguments are not the only two, but are
- the most commonly used. If activates the section below it if the condition
- of its argument is true. If an Else is specified then it runs the section
- after that. EndIf tells the computer that the If section is over. Please
- see the command Ask for the most common use.
-
- If (Condition is true)
- Do this
- Else
- If false, do this
- EndIf
-
- And if there is anything here, do this after the If section,
- regardless of the result.
-